home *** CD-ROM | disk | FTP | other *** search
- unit TMM_Trial;
- /////////////////////////////////////////////////////////
- // //
- // TMagicMacros-Component v2.0 //
- // TRIAL VERSION //
- // (only works while IDE is running) //
- // //
- // (C) Niels Vanspauwen, 15/10/98 //
- // E-mail: Niels.Vanspauwen@Kagi.com //
- // Homepage: http://magicmacros.8m.com //
- // //
- /////////////////////////////////////////////////////////
- {This component can be dropped on a form to support macro-recording
- and playback.
- Only one instance of this component can be created
- in a single application !}
-
- interface
-
- {$B-} {Partial Boolean evalution ON}
- {$X+} {Extended Syntax ON}
- {$H+} {Longstrings ON}
- {$I+} {IOChecking ON}
- {$Z1} {Bytesized Enumerated types}
- {$O+} {Compiler optimisations ON}
- {$Q-} {Overflowchecking OFF}
- {$R-} {RangeChecking OFF}
-
- procedure Register;
-
- implementation
-
- uses
- MagMcrTrial, Classes, DsgnIntf;
-
- procedure Register;
- begin
- RegisterComponents('Misc', [TMagicMacros]);
- RegisterComponentEditor(TMagicMacros, TMagicMacrosEditor);
- end; {procedure Register}
-
- end.
-